home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / db / esm-3.1 / esm-3 / usr / local / sm / src / include / softwareVersion.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-05  |  1.9 KB  |  58 lines

  1. #ifndef _SOFTWAREVERSION_H_
  2. #define _SOFTWAREVERSION_H_
  3. /*
  4.  *   $RCSfile: softwareVersion.h,v $  
  5.  *   $Revision: 1.1.1.1 $  
  6.  *   $Date: 1996/05/04 21:55:08 $      
  7.  */ 
  8.  
  9. /**********************************************************************
  10. * EXODUS Database Toolkit Software
  11. * Copyright (c) 1991 Computer Sciences Department, University of
  12. *                    Wisconsin -- Madison
  13. * All Rights Reserved.
  14. *
  15. * Permission to use, copy, modify and distribute this software and its
  16. * documentation is hereby granted, provided that both the copyright
  17. * notice and this permission notice appear in all copies of the
  18. * software, derivative works or modified versions, and any portions
  19. * thereof, and that both notices appear in supporting documentation.
  20. *
  21. * THE COMPUTER SCIENCES DEPARTMENT OF THE UNIVERSITY OF WISCONSIN --
  22. * MADISON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION.  
  23. * THE DEPARTMENT DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES
  24. * WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  25. *
  26. * The EXODUS Project Group requests users of this software to return 
  27. * any improvements or extensions that they make to:
  28. *
  29. *   EXODUS Project Group 
  30. *     c/o David J. DeWitt and Michael J. Carey
  31. *   Computer Sciences Department
  32. *   University of Wisconsin -- Madison
  33. *   Madison, WI 53706
  34. *
  35. *     or exodus@cs.wisc.edu
  36. *
  37. * In addition, the EXODUS Project Group requests that users grant the 
  38. * Computer Sciences Department rights to redistribute these changes.
  39. **********************************************************************/
  40.  
  41. /*
  42.  * Version number for this release
  43.  */
  44. /* BEGIN visible to user */
  45. #define VERSION_NUMBER "3.0"
  46. #define  SM_VERSION_3_0
  47. /* END visible to user */
  48.  
  49. /* for convenience, we use something that looks like the date,
  50.  * so 0x01092 is a version for October 1992 .
  51.  *
  52.  * This is checked for client/server compatibility.
  53.  */
  54. #define SOFTWARE_VERSION (SHORT_MAGIC) 0x0593
  55.  
  56.  
  57. #endif /* _SOFTWAREVERSION_H_ */
  58.